module rec PingPong = // <------ rec keyword here. let pong() = printfn "pong" ping() let ping () = printfn "ping" pong()